Telegram Group & Telegram Channel
Pyshark — библиотека для анализа сетевого трафика на Python. Она позволяет работать с .pcap-файлами и захватывать трафик в реальном времени. Для работы нужно установить tshark (идёт вместе с Wireshark) и добавить его в PATH.

Пример анализа файла:
import pyshark

cap = pyshark.FileCapture('example.pcap')
for packet in cap:
print(packet)

Пример захвата в реальном времени:

live_cap = pyshark.LiveCapture(interface='eth0')
for packet in live_cap.sniff_continuously(packet_count=10):
print(packet)

Чтобы фильтровать данные, можно использовать дисплейные фильтры Wireshark:

cap = pyshark.FileCapture('example.pcap', display_filter='http')
for packet in cap:
print(packet.http.host)


Ставится командой ⚙️ pip install pyshark
Документация и примеры кода здесь.



tg-me.com/pythonturboru/603
Create:
Last Update:

Pyshark — библиотека для анализа сетевого трафика на Python. Она позволяет работать с .pcap-файлами и захватывать трафик в реальном времени. Для работы нужно установить tshark (идёт вместе с Wireshark) и добавить его в PATH.

Пример анализа файла:

import pyshark

cap = pyshark.FileCapture('example.pcap')
for packet in cap:
print(packet)

Пример захвата в реальном времени:

live_cap = pyshark.LiveCapture(interface='eth0')
for packet in live_cap.sniff_continuously(packet_count=10):
print(packet)

Чтобы фильтровать данные, можно использовать дисплейные фильтры Wireshark:

cap = pyshark.FileCapture('example.pcap', display_filter='http')
for packet in cap:
print(packet.http.host)


Ставится командой ⚙️ pip install pyshark
Документация и примеры кода здесь.

BY Python Turbo. Уютное сообщество Python разработчиков.




Share with your friend now:
tg-me.com/pythonturboru/603

View MORE
Open in Telegram


Python Turbo Уютное сообщество Python разработчиков Telegram | DID YOU KNOW?

Date: |

Telegram has exploded as a hub for cybercriminals looking to buy, sell and share stolen data and hacking tools, new research shows, as the messaging app emerges as an alternative to the dark web.An investigation by cyber intelligence group Cyberint, together with the Financial Times, found a ballooning network of hackers sharing data leaks on the popular messaging platform, sometimes in channels with tens of thousands of subscribers, lured by its ease of use and light-touch moderation.

The global forecast for the Asian markets is murky following recent volatility, with crude oil prices providing support in what has been an otherwise tough month. The European markets were down and the U.S. bourses were mixed and flat and the Asian markets figure to split the difference.The TSE finished modestly lower on Friday following losses from the financial shares and property stocks.For the day, the index sank 15.09 points or 0.49 percent to finish at 3,061.35 after trading between 3,057.84 and 3,089.78. Volume was 1.39 billion shares worth 1.30 billion Singapore dollars. There were 285 decliners and 184 gainers.

Python Turbo Уютное сообщество Python разработчиков from kr


Telegram Python Turbo. Уютное сообщество Python разработчиков.
FROM USA